home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr26 / exc25.zip / EXC.V25 < prev    next >
Text File  |  1993-07-01  |  946b  |  23 lines

  1. REVISIONS FOR VERSION 2.5 OF EXC.EXE
  2.  
  3. 1. It appears that a few applications and at least one well known appli-
  4.    cation development package actually write binary zeros to certain parts of 
  5.    screen memory.  These appear as spaces on the screen but are actually read 
  6.    as binary zeros when EXC reads screen memory.  When EXC is searching the 
  7.    video memory for a string, it uses a string search algorithm that is 
  8.    terminated at the first binary zero.  This is because C++ uses binary 
  9.    zeros to terminate strings. 
  10.  
  11.    The result is that certain string text would be displayed on the screen 
  12.    but would not be located by EXC because the search was terminated 
  13.    prematurely.
  14.  
  15.    EXC now replaces any binary zeros in the screen buffer text with spaces.
  16.    This allows the search to perform as expected.
  17.  
  18. 2. The ON function did not work properly when the counter was more than 9.
  19.    This has been corrected.
  20.  
  21.   
  22.  
  23.